home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / lingua / upcookie.pas < prev   
Pascal/Delphi Source File  |  1995-12-22  |  2KB  |  50 lines

  1. unit Upcookie;
  2. (***************************************************************************)
  3. (*                                                                         *)
  4. (*   #####    #####     #####   #####    #####    ####    ######  #######  *)
  5. (*  #        #     #   #          #     #        #    #   #          #     *)
  6. (*  #        #     #   #  ###     #      ####    #    #   ###        #     *)
  7. (*  #        #     #   #    #     #          #   #    #   #          #     *)
  8. (*   #####    #####     #####   #####   #####     ####    #          #     *)
  9. (*                                                                         *)
  10. (***************************************************************************)
  11. {
  12.  (c) 1995 Cogisoft
  13.  This component is FREE distribution. Use it for your own utilization.
  14.  But you can't sell an application, using this component, without the
  15.  authorization of Cogisoft.
  16.  
  17.  COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
  18.  Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
  19.  
  20.  NO CODING !!!
  21.  Jerome VOLLET, CompuServe : 100560,3342
  22. }
  23. interface
  24.  
  25. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  26.   StdCtrls, ExtCtrls;
  27.  
  28. type
  29.   TfmUpdateCookie = class(TForm)
  30.     Panel1: TPanel;
  31.     HelpBtn: TBitBtn;
  32.     CancelBtn: TBitBtn;
  33.     OKBtn: TBitBtn;
  34.     Panel2: TPanel;
  35.     sbxProperties: TScrollBox;
  36.   private
  37.     { Private declarations }
  38.   public
  39.     { Public declarations }
  40.   end;
  41.  
  42. var
  43.   fmUpdateCookie: TfmUpdateCookie;
  44.  
  45. implementation
  46.  
  47. {$R *.DFM}
  48.  
  49. end.
  50.